feat!: enable remote customer-cloud storage bindings (ALIEN-291)#156
Open
lilienblum wants to merge 76 commits into
Open
feat!: enable remote customer-cloud storage bindings (ALIEN-291)#156lilienblum wants to merge 76 commits into
lilienblum wants to merge 76 commits into
Conversation
This was referenced Jul 20, 2026
Contributor
Author
|
CI Fast reached and passed lint, TypeScript typecheck, the real bindings addon build, package-layout validation, and the full TypeScript unit suite. It then stopped on the existing ALIEN-291-specific Rust, Node addon, TypeScript, IAM dataset, and generated AWS/GCP/Azure artifact checks are listed in the PR body and pass locally. |
lilienblum
force-pushed
the
lilienblum/alien-291-remote-bindings
branch
from
July 21, 2026 02:09
959ffe4 to
915d152
Compare
lilienblum
force-pushed
the
lilienblum/alien-291-remote-bindings
branch
2 times, most recently
from
July 23, 2026 08:15
658d29c to
2603348
Compare
@alienplatform/commands ships to npm with a blank package page. Document both halves of the package: sending with CommandsClient (.target scoping, CommandsClientConfig, InvokeOptions) and receiving with createCommandReceiver (environment contract, raw byte handlers, Standard Schema validation, execution budget, at-least-once delivery, drain semantics), plus the exported error set. Every TypeScript sample was extracted from the README and typechecked against the built package types with tsc --noEmit.
lilienblum
force-pushed
the
lilienblum/alien-291-remote-bindings
branch
from
July 24, 2026 04:08
632ac6f to
6956802
Compare
… policies (ALIEN-291) The runtime remote-stack-management controller creates/versions/attaches <stack>-deployment-management-* managed policies onto the <stack>-management role after setup — how a Frozen, remote-access (BYOB) resource grants the management identity access to a bucket whose ARN is only known post-provision. Setup only compiled static grants for Live resources, so these calls 403'd. Grant is scoped to this stack's own deployment-management namespace; attach is fenced by an iam:PolicyARN condition.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Tracks ALIEN-291.
Summary
put,get,head,list, anddelete.packages/commands/README.mdso the published@alienplatform/commandspackage has a landing page. It documents the standalone sender and the pull receiver, theALIEN_COMMANDS_*environment, and the{ managerUrl, deploymentId, token }client contract that ships today.Security and ownership
storage/remote-data-write.Breaking changes
/v1/resolve-credentialsroute.BindingsProvider::for_remote_deploymentwithBindings::for_remote_deployment.Verification
cargo test -p alien-manager --lib, the manager credential and full-feature infrastructure resolvers, AWS endpoint parsing, GCP/Azure setup-import ownership and dependency-drain cleanup, Azure storage-trigger reconciliation, and the full Azure worker/command-sender suites pass.iam:CreatePolicy/iam:AttachRolePolicy.RUSTC_WRAPPER= cargo check --workspace --all-targets, the comprehensive E2E app check, provider attenuation, permission, generated-client, N-API/TypeScript, example, and smoke suites,cargo check -p alien-platform-api, Rust formatting, generator shell validation, andgit diff --checkpass.a0d7f34dis clean at P0-P2. An earlier iteration granted the management role self-service on its own<stack>-deployment-management-*policies; because an IAM resource-name scope constrains a created policy's name and not its contents, that path could create an arbitrary-permission policy and self-attach it, so it was replaced with a setup-owned model where setup emits the concrete storage grant and the runtime never mutates IAM.a0d7f34d: https://github.com/alienplatform/alien/actions/runs/30090439965packages/commands/README.mdcommits are documentation only and touch no code path. Their TypeScript samples were type-checked against the built package exports, and the corrected guarantees (timeoutMsis a polling budget, native caller-validation errors can surface, and token-file / HTTP(S) validation rejectrunasynchronously) were confirmed against the implementation.put/get/head/list/deleteagainst provisioned remote storage) is pending a real-cloud validation run.Stacked structural PR
The structural split PR #133 is based on this branch and carries only file-decomposition changes for ALIEN-291. Merge this PR first, then retarget #133 to
mainand merge it.